home *** CD-ROM | disk | FTP | other *** search
/ Complete Linux / Complete Linux.iso / docs / apps / database / postgres / postgre4.z / postgre4 / newconf / FILES / storage.mkf < prev    next >
Encoding:
Text File  |  1992-08-27  |  2.9 KB  |  123 lines

  1. #
  2. #    storage.mkf
  3. #
  4. #    $Header: /private/postgres/newconf/FILES/RCS/storage.mkf,v 1.26 1992/02/28 02:32:27 mao Exp $
  5. #
  6. # files.storage
  7.  
  8. # ----------------
  9. #
  10. # ----------------
  11. TARGET= STORAGE
  12.  
  13. # ----------------
  14. #
  15. # ----------------
  16. BUFOBJS =  \
  17.         $(OD)/storage/buffer/bufmgr.o \
  18.         $(OD)/storage/buffer/buf_table.o \
  19.         $(OD)/storage/buffer/freelist.o \
  20.         $(OD)/storage/buffer/order.o 
  21.  
  22. FILEOBJS = \
  23.      $(OD)/storage/file/fd.o 
  24.  
  25. IPCOBJS = \
  26.         $(OD)/storage/ipc/execipc.o \
  27.         $(OD)/storage/ipc/ipc.o \
  28.         $(OD)/storage/ipc/ipci.o \
  29.         $(OD)/storage/ipc/shmem.o \
  30.         $(OD)/storage/ipc/shmqueue.o \
  31.         $(OD)/storage/ipc/spin.o \
  32.         $(OD)/storage/ipc/s_lock.o \
  33.         $(OD)/storage/ipc/sinval.o \
  34.         $(OD)/storage/ipc/sinvaladt.o
  35.  
  36. LMGROBJS = \
  37.         $(OD)/storage/lmgr/lmgr.o \
  38.     $(OD)/storage/lmgr/multi.o \
  39.     $(OD)/storage/lmgr/single.o \
  40.     $(OD)/storage/lmgr/lock.o \
  41.     $(OD)/storage/lmgr/proc.o
  42.  
  43. LARGEOBJOBJS = \
  44.     $(OD)/storage/large_object/inv_api.o \
  45.     $(OD)/storage/large_object/lo_api.o \
  46.     $(OD)/storage/large_object/lo_utils.o
  47.  
  48. PAGEOBJS = \
  49.         $(OD)/storage/page/bufpage.o \
  50.         $(OD)/storage/page/itemptr.o \
  51.         $(OD)/storage/page/part.o \
  52.         $(OD)/storage/page/pskip.o 
  53.  
  54. SMGROBJS = \
  55.         $(OD)/storage/smgr/smgr.o \
  56.         $(OD)/storage/smgr/smgrtype.o \
  57.         $(OD)/storage/smgr/md.o \
  58.         $(OD)/storage/smgr/mm.o \
  59.         $(OD)/storage/smgr/sj.o \
  60.         $(OD)/storage/smgr/jbaccess.o \
  61.         $(OD)/storage/smgr/pgjb.o
  62.  
  63. STORAGEOBJS=        \
  64.     $(BUFOBJS)    \
  65.     $(FILEOBJS)    \
  66.     $(IPCOBJS)    \
  67.     $(LMGROBJS)    \
  68.     $(LARGEOBJOBJS)    \
  69.     $(PAGEOBJS)    \
  70.     $(SMGROBJS)
  71.  
  72. # ----------------
  73. #
  74. # ----------------
  75. BUFDEPS =  \
  76.         $(OD)/storage/buffer/bufmgr.d \
  77.         $(OD)/storage/buffer/buf_table.d \
  78.         $(OD)/storage/buffer/freelist.d \
  79.         $(OD)/storage/buffer/order.d 
  80.  
  81. FILEDEPS = \
  82.      $(OD)/storage/file/fd.d 
  83.  
  84. IPCDEPS = \
  85.         $(OD)/storage/ipc/execipc.d \
  86.         $(OD)/storage/ipc/ipc.d \
  87.         $(OD)/storage/ipc/ipci.d \
  88.         $(OD)/storage/ipc/shmem.d \
  89.         $(OD)/storage/ipc/shmqueue.d \
  90.         $(OD)/storage/ipc/spin.d \
  91.         $(OD)/storage/ipc/s_lock.d \
  92.         $(OD)/storage/ipc/sinval.d \
  93.         $(OD)/storage/ipc/sinvaladt.d
  94.  
  95. LMGRDEPS = \
  96.         $(OD)/storage/lmgr/lmgr.d \
  97.         $(OD)/storage/lmgr/pladt.d \
  98.         $(OD)/storage/lmgr/pladtdeb.d \
  99.         $(OD)/storage/lmgr/pldebug.d \
  100.         $(OD)/storage/lmgr/plm.d \
  101.         $(OD)/storage/lmgr/plsync.d 
  102.  
  103. PAGEDEPS = \
  104.         $(OD)/storage/page/bufpage.d \
  105.         $(OD)/storage/page/itemptr.d \
  106.         $(OD)/storage/page/part.d \
  107.         $(OD)/storage/page/pskip.d 
  108.  
  109. SMGRDEPS = \
  110.         $(OD)/storage/smgr/smgr.d \
  111.         $(OD)/storage/smgr/smgrtype.d \
  112.         $(OD)/storage/smgr/md.d \
  113.         $(OD)/storage/smgr/mm.d \
  114.         $(OD)/storage/smgr/sj.d
  115.  
  116. STORAGEDEPS=        \
  117.     $(BUFDEPS)    \
  118.     $(FILEDEPS)    \
  119.     $(IPCDEPS)    \
  120.     $(LMGRDEPS)    \
  121.     $(PAGEDEPS)    \
  122.     $(SMGRDEPS)
  123.